home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 35.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  496b  |  25 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. /*
  9. float  square(float);  /* defines a function prototype.
  10. */
  11. main()
  12. {
  13.     float    square(), i, j=99.99; /* define square() using vanilla C */
  14.  
  15.     i=square(j);
  16.     printf("The value %.2f squared is: %.2f\n",j,i);
  17. }
  18.  
  19. float    square(val)
  20. float    val;
  21. {
  22.     val *= val;
  23.     return(val);
  24. }
  25.